home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / prtest < prev    next >
Text File  |  1992-02-10  |  113b  |  8 lines

  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. printf("Hello: "); (void)getchar();
  6. fputs("World: ",stdout); (void)getchar();
  7. }
  8.